home *** CD-ROM | disk | FTP | other *** search
/ Medabots Cardz / Medabots CD Cardz Rokusho.bin / mac / assets / constructROKUSHO.swf / scripts / DefineButton2_158 / BUTTONCONDACTION on(press).as
Text File  |  2001-11-29  |  429b  |  19 lines

  1. on(press){
  2.    stopDrag();
  3.    if(_droptarget eq "/bot/head" or _droptarget eq "/bot/left arm" or _droptarget eq "/bot/right arm" or _droptarget eq "/bot/legs" or _droptarget eq "/bot/table")
  4.    {
  5.       tellTarget("/bot/right arm")
  6.       {
  7.          gotoAndStop(2);
  8.       }
  9.       tellTarget("/")
  10.       {
  11.          setProperty("/rokusho right", _visible, "0");
  12.       }
  13.    }
  14.    else
  15.    {
  16.       gotoAndPlay(5);
  17.    }
  18. }
  19.